type github.com/andybalholm/brotli/flate.byFreq

7 uses

	github.com/andybalholm/brotli/flate (current package)
		huffman_code.go#L23: 	lfs       byFreq    // stored to avoid repeated allocation in generate
		huffman_code.go#L326: type byFreq []literalNode
		huffman_code.go#L328: func (s *byFreq) sort(a []literalNode) {
		huffman_code.go#L329: 	*s = byFreq(a)
		huffman_code.go#L333: func (s byFreq) Len() int { return len(s) }
		huffman_code.go#L335: func (s byFreq) Less(i, j int) bool {
		huffman_code.go#L342: func (s byFreq) Swap(i, j int) { s[i], s[j] = s[j], s[i] }